home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 2_7.lha / 2_7 / 2_7a.c < prev    next >
Text File  |  1993-08-08  |  360b  |  17 lines

  1. * Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
  2. * The C++ Answer Book */
  3. * Tony Hansen */
  4. * All rights reserved. */
  5. / union to pick apart the double
  6. nion double_byte
  7.  
  8.    double d;
  9.    struct            // first 2 bytes only
  10. {
  11. unsigned sign : 1;
  12. unsigned exponent : 11;
  13. unsigned mantissa : 4;
  14. } s_m;
  15.    char c[sizeof(double)];    // all 8 bytes
  16. ;
  17.